@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin:0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background-image: url("./Assets/Images/Background/Background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before{
    content: "";
    width: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0; left: 0;
    background-image: linear-gradient(90deg, #ffffff,#00000000,#ffffff);
    backdrop-filter: blur(0.4rem);
    -webkit-backdrop-filter: blur(0.4rem);
    opacity: 0.1;
}